home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / gnu / gnpltsrc.lha / alloc.h < prev    next >
C/C++ Source or Header  |  1996-01-22  |  485b  |  18 lines

  1. /*
  2.  * $Id: alloc.h,v 1.1 1994/09/13 16:11:10 alex Exp $
  3.  */
  4.  
  5. /* prototypes from "alloc.c". This file figures out if the free hack is needed
  6.  * and redefines free if necessary.
  7.  */
  8.  
  9. char *alloc __P((unsigned long size, char *message));
  10. generic *ralloc __P((generic *p, unsigned long size, char *message));
  11.  
  12. #if defined(MSDOS) && defined(__TURBOC__) && !defined(DOSX286) || defined(_Windows) && !defined(WIN32)
  13. #define FARALLOC
  14. void gpfree __P((generic *p));
  15. #define free gpfree
  16. #endif
  17.  
  18.